summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKelebek1 <eeeedddccc@hotmail.co.uk>2023-02-05 23:27:35 +0100
committerKelebek1 <eeeedddccc@hotmail.co.uk>2023-02-05 23:28:03 +0100
commit8ae2a664d21850593f639e17f0a409d6e3e97069 (patch)
treedbfc2ad9340cd8af3970cfea2328b502ae1d6405
parentMerge pull request #9717 from german77/less_is_better (diff)
downloadyuzu-8ae2a664d21850593f639e17f0a409d6e3e97069.tar
yuzu-8ae2a664d21850593f639e17f0a409d6e3e97069.tar.gz
yuzu-8ae2a664d21850593f639e17f0a409d6e3e97069.tar.bz2
yuzu-8ae2a664d21850593f639e17f0a409d6e3e97069.tar.lz
yuzu-8ae2a664d21850593f639e17f0a409d6e3e97069.tar.xz
yuzu-8ae2a664d21850593f639e17f0a409d6e3e97069.tar.zst
yuzu-8ae2a664d21850593f639e17f0a409d6e3e97069.zip
-rw-r--r--src/video_core/renderer_vulkan/vk_graphics_pipeline.cpp26
1 files changed, 1 insertions, 25 deletions
diff --git a/src/video_core/renderer_vulkan/vk_graphics_pipeline.cpp b/src/video_core/renderer_vulkan/vk_graphics_pipeline.cpp
index f91bb5a1d..baedc4424 100644
--- a/src/video_core/renderer_vulkan/vk_graphics_pipeline.cpp
+++ b/src/video_core/renderer_vulkan/vk_graphics_pipeline.cpp
@@ -548,31 +548,7 @@ void GraphicsPipeline::MakePipeline(VkRenderPass render_pass) {
static_vector<VkVertexInputBindingDescription, 32> vertex_bindings;
static_vector<VkVertexInputBindingDivisorDescriptionEXT, 32> vertex_binding_divisors;
static_vector<VkVertexInputAttributeDescription, 32> vertex_attributes;
- if (key.state.dynamic_vertex_input) {
- const size_t num_vertex_arrays = std::min(
- key.state.attributes.size(), static_cast<size_t>(device.GetMaxVertexInputBindings()));
- for (size_t index = 0; index < num_vertex_arrays; ++index) {
- const u32 type = key.state.DynamicAttributeType(index);
- if (!stage_infos[0].loads.Generic(index) || type == 0) {
- continue;
- }
- vertex_attributes.push_back({
- .location = static_cast<u32>(index),
- .binding = 0,
- .format = type == 1 ? VK_FORMAT_R32_SFLOAT
- : type == 2 ? VK_FORMAT_R32_SINT
- : VK_FORMAT_R32_UINT,
- .offset = 0,
- });
- }
- if (!vertex_attributes.empty()) {
- vertex_bindings.push_back({
- .binding = 0,
- .stride = 4,
- .inputRate = VK_VERTEX_INPUT_RATE_VERTEX,
- });
- }
- } else {
+ if (!key.state.dynamic_vertex_input) {
const size_t num_vertex_arrays = std::min(
Maxwell::NumVertexArrays, static_cast<size_t>(device.GetMaxVertexInputBindings()));
for (size_t index = 0; index < num_vertex_arrays; ++index) {